0b77f89a79d4ae54f54379bd86d8c000c6fb6ef7,host-controller/src/main/java/org/jboss/as/domain/controller/operations/coordination/ServerOperationResolver.java,ServerOperationResolver,getServerOperations,#OperationContext#ModelNode#PathAddress#,168
Before Change
HOST_CONTROLLER_LOGGER.tracef("Resolving %s", originalOperation);
}
ModelNode operation = context.getAttachment(OperationAttachments.SLAVE_SERVER_OPERATION);
if(operation == null) {
operation = originalOperation;
}
After Change
HOST_CONTROLLER_LOGGER.tracef("Resolving %s", originalOperation);
}
List<DomainOperationTransformer> transformers = context.getAttachment(OperationAttachments.SLAVE_SERVER_OPERATION_TRANSFORMERS);
ModelNode operation = originalOperation;
if(transformers != null) {
for(DomainOperationTransformer transformer : transformers) {
operation = transformer.transform(context, operation);
}